home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Browsers, Managers & Extensions / Mozilla Weave 0.2.7 / latest-weave.xpi / chrome / sync.jar / content / status.xul < prev    next >
Extensible Markup Language  |  2008-08-19  |  1KB  |  43 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4. <?xml-stylesheet href="chrome://weave/content/status.css" type="text/css"?>
  5.  
  6. <!DOCTYPE overlay SYSTEM "chrome://weave/locale/status.dtd">
  7.  
  8. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.         id="sync-status-dialog"
  10.         title="&dialog.title;"
  11.         windowtype="Weave:Status"
  12.         buttons="cancel"
  13.         ondialogcancel="return WeaveStatus.doCancel();"
  14.         onload="WeaveStatus.onLoad()"
  15.         onunload="WeaveStatus.onUnload()">
  16.  
  17.   <script type="application/x-javascript"
  18.           src="chrome://weave/content/status.js"/>
  19.   
  20.   <stringbundleset id="stringbundleset">
  21.     <stringbundle id="weaveStringBundle"
  22.                   src="chrome://weave/locale/status.properties"/>
  23.   </stringbundleset>
  24.   
  25.   <hbox align="center">
  26.     <image id="statusTitleIcon"/>
  27.     <label id="statusTitle" value="&dialog.title;"/>
  28.   </hbox>
  29.   
  30.   <vbox>
  31.     <progressmeter id="statusProgress" mode="determined" value="0"/>
  32.       <hbox align="center" id="statusBox">
  33.         <image id="statusIcon"/>
  34.         <vbox>
  35.           <!-- empty values are required to preallocate space for the label -->
  36.           <label id="statusEngine" value=""/>
  37.           <label id="statusText" value=""/>
  38.         </vbox>
  39.       </hbox>
  40.   </vbox>
  41.   
  42. </dialog>
  43.